home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / feednfrenzy.swf / scripts / frame_611 / PlaceObject2_219_35 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-25  |  476b  |  20 lines

  1. onClipEvent(enterFrame){
  2.    if(this._y < _root.depth._y - 5)
  3.    {
  4.       this._alpha = 0;
  5.    }
  6.    if(this._y < _root.depth._y - 5)
  7.    {
  8.       removeMovieClip(this);
  9.    }
  10.    this._y -= 2;
  11.    if(speedolian > 1)
  12.    {
  13.       speedolian -= 0.3;
  14.    }
  15.    this._x -= Math.cos(3.141592653589793 * this._rotation / 180) * speedolian;
  16.    this._y -= Math.sin(3.141592653589793 * this._rotation / 180) * speedolian;
  17.    this._x += _global.xgo;
  18.    this._y += _global.ygo;
  19. }
  20.